home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / edm0407s.zip / STAT3SRC.ZIP / ABOUT.HPP < prev    next >
C/C++ Source or Header  |  1996-07-22  |  352b  |  19 lines

  1. #ifndef _ABOUT_HPP_
  2. #define _ABOUT_HPP_
  3.  
  4. #include <iframe.hpp>           //Include IFrameWindow Class Header
  5. #include <icmdhdr.hpp>
  6.  
  7. class AAbout : public IFrameWindow,
  8.                public ICommandHandler
  9.  
  10. {
  11.   public:
  12.     AAbout (IWindow * ownerWnd);
  13.  
  14.   protected:
  15.     Boolean command (ICommandEvent &evt);
  16. };
  17.  
  18. #endif //_ABOUT_HPP_
  19.